home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / STUTTGART / EDITORS / FUE / h / epath < prev    next >
Encoding:
Text File  |  1991-06-01  |  1.6 KB  |  113 lines

  1. /*      EPATH:  This file contains certain info needed to locate the
  2.                 MicroEMACS files on a system dependant basis.
  3.  
  4.                                                                         */
  5.  
  6. /*      possible names and paths of help files under different OSs      */
  7.  
  8. NOSHARE CONST char *pathname[] =
  9.  
  10. #if     AMIGA
  11. {
  12.         ".emacsrc",
  13.         "emacs.hlp",
  14.         "",
  15.         "sys:c/",
  16.         "sys:t/",
  17.         "sys:s/",
  18.         "c:/",
  19.         ":t/",
  20.         ":s/"
  21. };
  22. #endif
  23.  
  24. #if     ST520
  25. {
  26.         "emacs.rc",
  27.         "emacs.hlp",
  28.         "\\",
  29.         "\\bin\\",
  30.         "\\util\\",
  31.         ""
  32. };
  33. #endif
  34.  
  35. #if     FINDER
  36. {
  37.         "emacs.rc",
  38.         "emacs.hlp",
  39.         "/bin",
  40.         "/sys/public",
  41.         ""
  42. };
  43. #endif
  44.  
  45. #if     MSDOS
  46. {
  47.         "emacs.rc",
  48.         "emacs.hlp",
  49.         "\\sys\\public\\",
  50.         "\\usr\\bin\\",
  51.         "\\bin\\",
  52.         "\\",
  53.         ""
  54. };
  55. #endif
  56.  
  57. #if     V7 | BSD | USG | HPUX
  58. {
  59.         ".emacsrc",
  60.         "emacs.hlp",
  61.         "/usr/local/",
  62.         "/usr/lib/",
  63.         ""
  64. };
  65. #endif
  66.  
  67. #if     VMS
  68. {
  69.         "emacs.rc",
  70.         "emacs.hlp",
  71.         "",
  72.         "MICROEMACS$LIB:",
  73.         "sys$sysdevice:[vmstools]"
  74. };
  75. #endif
  76.  
  77.  
  78.  
  79. #if     RISCOS
  80. {
  81.         "emacs_rc",
  82.         "emacs_hlp",
  83.         "<EMACS$DIR>.",
  84.         ""
  85. };
  86. #endif
  87.  
  88. #if WMCS
  89. {
  90.         "emacs.rc",
  91.         "emacs.hlp",
  92.         "",
  93.         "sys$disk/syslib.users/"
  94. };
  95. #endif
  96.  
  97. #if AOSVS
  98. /*
  99.     NOTE: you must use the Unix style pathnames here!
  100. */
  101. {
  102.     "emacs.rc",
  103.     "emacs.hlp",
  104.     "",
  105.     "/macros/",
  106.     "/help/"
  107. };
  108. #endif
  109.  
  110.  
  111.  
  112. #define NPNAMES (sizeof(pathname)/sizeof(char *))
  113.